home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Sterne2.h < prev    next >
C/C++ Source or Header  |  1998-12-27  |  892b  |  36 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Sterne2H
  3. #define Sterne2H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     TLabel *Label1;
  14.     TListBox *ListBox1;
  15.     
  16.     
  17.     
  18.     
  19.     
  20.     
  21.     
  22.     
  23.     
  24.     
  25.     
  26.     
  27.     void __fastcall ListBox1Click(TObject *Sender);
  28. private:    // Benutzer-Deklarationen
  29. public:        // Benutzer-Deklarationen
  30.     __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.